home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / manual-p / olxvman.tgz / olxvman.tar / olxvman / _install / install_parameters < prev    next >
Text File  |  1990-12-18  |  6KB  |  147 lines

  1. #! /bin/sh
  2. #
  3. # @(#)install_parameters    4.5  10/12/88
  4. #       Copyright (c) 1988, Sun Microsystems, Inc.  All Rights Reserved.
  5. #       Sun considers its source code as an unpublished, proprietary
  6. #       trade secret, and it is available only under strict license
  7. #       provisions.  This copyright notice is placed here only to protect
  8. #       Sun in the event the source is deemed a published work.  Dissassembly,
  9. #       decompilation, or other means of reducing the object code to human
  10. #       readable form is prohibited by the license agreement under which
  11. #       this code is provided to the user or company in possession of this
  12. #       copy.
  13. #
  14. #       RESTRICTED RIGHTS LEGEND: Use, duplication, or disclosure by the
  15. #       Government is subject to restrictions as set forth in subparagraph
  16. #       (c)(1)(ii) of the Rights in Technical Data and Computer Software
  17. #       clause at DFARS 52.227-7013 and in similar clauses in the FAR and
  18. #       NASA FAR Supplement.
  19. # File: install_parameters
  20. # Description:  This file is used to customize the installation scripts
  21. # used by install_unbundled and 4.5_Template (renamed to reflect
  22. # product).
  23. #
  24. #####################################################################
  25. #  PRE-DETERMINED VARIABLES  (That means you set these up)          #
  26. #####################################################################
  27. # Name of product, including release number.
  28. PROD="Sun UnBundled Example"
  29.  
  30. #   This is what you renamed 2.0_Template to.  It should reflect
  31. #   the product name.
  32. #   format of script_name = releaseno_productname_release-level
  33. #               note: for "fcs" release-level is left blank.
  34. #        examples: 1.1_NeWS, 2.0_LISP_beta
  35. SCRIPT_NAME="install_unbundled_RE"
  36.  
  37. ##### The following three are needed for Language products. #####
  38. ####  Otherwise leave blank.                                #####
  39. # PROD_NAME is the plain product name, in all *lower* case letters;
  40. #       e.g. c, lint, pascal, fortran, modula2.
  41. PROD_NAME="UB_example"
  42. # PROD_RELEASE is the product's release number.
  43. PROD_RELEASE="1.0"
  44. # PROD_BASE_SOS_RELEASE is the basic SunOS release number (only one) upon
  45. #       which this release of the product is intended to run.
  46. #PROD_BASE_SOS_RELEASE="4.0"
  47. #####################################################################
  48.  
  49. # Required login for installation
  50. #       none = doesn't matter who it is, otherwise put logname here
  51. REQ_LOGIN="root"
  52.  
  53. # Compatible Operating systems
  54. # Only list major OS releases only, not "dot,dot"s, for Sys4-3.2 use Sys4
  55. # More than one OS can be listed, just put blanks between each (e.g. 
  56. # SOS_COMPAT="4.0 4.1"
  57. SOS_COMPAT="4.0 4.1"
  58.  
  59. # Compatible Sun Architechures
  60. # Allows product to be installed only on these architectures or servers
  61. # supporting these architectures.
  62. #
  63. # Use "sun2" "sun3" "sun4" "sun386" exactly the way `arch` prints it
  64. # New arch types: hydra="sun3x" SunRay="sun4"  campus="sun4c"
  65. ARCH_COMPAT="sun4 sun4c"
  66.  
  67. # List the Required Hardware
  68. #           No testing is done this is only displayed to the user.
  69. HARD_REQ="Binaries for CDmanager and CDM are Sun 4 only"
  70.  
  71. # List the Optional Hardware
  72. #           No testing is done this is only displayed to the user.
  73. HARD_OPT="none"
  74.  
  75. # list the Required Software
  76. #           No testing is done this is only displayed to the user.
  77. SOFT_REQ="SunOS 4.X "
  78.     
  79.  
  80. # List the Optional Software (separate products)
  81. #           No testing is done this is only displayed to the user.
  82. #           Software that complements the software to be installed
  83. SOFT_OPT="none"
  84.  
  85. # Can DESTDIR be changed?
  86. #        Only put "Y" if the destination directory can be selected by the
  87. #        user.
  88. #        This will only be changable for standalone installations.
  89. #
  90. DEST_SETABLE="Y"
  91.  
  92. # DESTINATION DIRECTORY
  93. #        Fill in a default destination directory.  This directory should
  94. #        already be present on the system as a partition,  since the tar
  95. #        file will create any further directories that are needed.
  96. #        For most unbundled products DESTDIR="/usr" is correct since /usr is
  97. #        usually linked to /export/exec/sun#.
  98. #
  99. DESTDIR="/home/unbundled/templates"
  100.  
  101. # CHANGE PERMISSION
  102. #       To the directory that will contain symbolic links to the
  103. #       product located in $DESTDIR (Sun386i)
  104. #       No modification is necessary to this variable.
  105. #
  106. MAKE_DIR_RW="/etc/mount -o remount,rw /usr"
  107.  
  108. # Size of product software (approx. kbytes)
  109. # This figure is used to test for available space on the installation partition.
  110. SOFT_SIZE=2500
  111.  
  112. # Approximate Time for Installation
  113. #       Display information only
  114. INSTALL_TIME="2  minutes"
  115.  
  116. # Choose a major dir/file to test existence of.  This is to check for a previous#  installation of this software.
  117. #  Start path relative to DESTDIR (ex: lib/modula2)
  118. SOFT_PRETEST="templates"
  119.  
  120. # Fill in description of what the script does.  This will be displayed to
  121. # the installer (so keep it clean and concise).
  122.  
  123. SCRIPT_DESC="This will install the Sun Unbundled Release Engineering installation templates "
  124.  
  125. #########################################
  126. #  OPTIONAL SOFTWARE RELEASE VARIABLES  #
  127. #########################################
  128.  
  129. #   Flag Y=Optional Software on tape N=no optional software
  130. OPT_REL="N"
  131.  
  132. #  Comment out or remove this section if there is no optional software #
  133.  
  134. #  Can destination directory for optional software be changed (Y|N)?
  135. #OPT_DEST_SETABLE="N"
  136.  
  137. #  Fill in default destination directory for optional software
  138. #OPT_DESTDIR="/usr"
  139.  
  140. #  Name of optional software on release tape ( third file on tape )
  141. #OPT_LIST="Option software"
  142.  
  143. #   Size of optional software (kbytes)
  144. #OPT_SIZE=5
  145.